home *** CD-ROM | disk | FTP | other *** search
/ MacWorld: Complete Mac Interactive / Macworld Complete Mac Interactive CD)(1994).iso / Software / Graphsoft / Arch Demo / Core.sit / MiniCad 5 Demo.rsrc / STR#_7013.txt < prev    next >
Text File  |  1994-04-15  |  158b  |  15 lines

  1. Returns the character of the ASCII code of v.
  2. e.g.
  3. Chr(97) = a
  4. Chr(65) = A
  5.  
  6. Chr(v);
  7.  
  8. Returns the ASCII code of v.
  9. e.g. 
  10. Ord('a') = 97
  11. Ord('A') = 65
  12.  
  13. Ord(v);
  14.  
  15.